Sudooku

Solution

The puzzle requires first solving the provided 9×9 Sudoku:

867531249
419267853
523984176
971325468
642819537
385476912
756192384
198643725
234758691

The instructions “Up, Left, Up, Down, Right, Left, and Down” can be interpreted as button presses in Double-Oh (hinted by the doubled letter “o” in the title). This means that they don’t necessarily go in the indicated direction, but rather we need to figure out what movements they actually perform such that we land on the indicated digits within the solved Sudoku grid (“from 2, then 7 9, 5 3 1, 7 5”). The movements are:

This yields the following movements. For each cell we visit, we can extract the corresponding letter from the provided letter grid.

Instruction Movement Cell Letter
(starting position) R6C9 (digit 2) W
Up Small Up R5C9 (digit 7) H
Left Big Left R5C6 (digit 9) A
Up Small Up R4C6 (digit 5) T
Down Small Right R4C4 (digit 3) E
Right Big Down R7C4 (digit 1) V
Left Big Left R7C1 (digit 7) E
Down Small Right R7C2 (digit 5) R

WHATEVER